home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: R-H-S / R-H-S Tools 03 (19xx)(Reiner Hobbold Software)(DE)(PD).zip / R-H-S Tools 03 (19xx)(Reiner Hobbold Software)(DE)(PD).adf / devs / MountList < prev    next >
Text File  |  1988-05-09  |  3KB  |  112 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler    */
  4.  
  5. NEWCON:       Handler = L:Newcon-Handler
  6.        Priority = 5
  7.        StackSize = 1000
  8. #
  9.  
  10. /*  This is an example of an alternative type of non-filing device mount,
  11.     used to mount the non-buffered serial handler
  12. */
  13.  
  14. AUX:       Handler = L:Aux-Handler
  15.            Stacksize = 6000
  16.            Priority = 5
  17.        GlobVec = -1
  18. #
  19. /*  This is an example of an alternative type of non-filing device mount,
  20.     used to mount the pipe handler
  21. */
  22.  
  23. PIPE:      Handler = L:Pipe-Handler
  24.            Stacksize = 6000
  25.            Priority = 5
  26.        GlobVec = -1
  27. #
  28.  
  29. /* This is an example of a non-filing system mount using a handler written
  30.    in C.
  31. */
  32.  
  33. SPEAKER:   Handler = L:Speak-Handler
  34.            Stacksize = 6000
  35.            Priority = 5
  36.        GlobVec = -1
  37. #
  38.  
  39. /* This is an example of a mount list entry for using the recoverable 
  40.    ram disk.  Depending on the amount of memory you wish to devote to
  41.    it, you may want to change the HighCyl value.
  42. */
  43.  
  44. CARD:      Device = ramdrive.device
  45.            Unit   = 0
  46.            Flags  = 0
  47.            Surfaces  = 2
  48.            BlocksPerTrack = 11
  49.            Reserved = 2
  50.            Interleave = 0
  51.            LowCyl = 0  ;  HighCyl = 79
  52.            Buffers = 5
  53.            BufMemType = 1
  54. #
  55.  
  56. /* Mount a 5.25" disk drive to be mounted as DF2: */
  57.  
  58. DF2:       Device = trackdisk.device
  59.            Unit   = 2
  60.            Flags  = 1
  61.            Surfaces  = 2
  62.            BlocksPerTrack = 11
  63.            Reserved = 2
  64.        PreAlloc = 11
  65.            Interleave = 0
  66.            LowCyl = 0  ;  HighCyl = 39
  67.            Buffers = 20
  68.            BufMemType = 3
  69. #
  70.  
  71. /* An example mount entry using the fast file system with a partition
  72.    of the hard disk using the 2090 disk controller.  PREP has been
  73.    used to create the first partition (up to cylinder 20).  The second
  74.    partition is MOUNTed, using the following entry:
  75.    (The hard disk is not included; this is only an example.)
  76. */
  77.  
  78. FAST:      Device = hddisk.device
  79.        FileSystem = l:FastFileSystem
  80.        Unit   = 1
  81.            Flags  = 0
  82.            Surfaces  = 4
  83.            BlocksPerTrack = 17
  84.            Reserved = 2
  85.            Interleave = 0
  86.            LowCyl = 21  ;  HighCyl = 800
  87.            Buffers = 30
  88.        GlobVec = -1
  89.            BufMemType = 1
  90. #
  91.  
  92.  
  93. /* Let's say you have an A2000 with an internal drive, and an external
  94.    drive, and you want to refer to the external drive as DF1: as well
  95.    as DF2:   Well, this MountList entry will do it for you.  This technique
  96.    can be extended to provide you with a drive A: and B: if you really
  97.    want.
  98. */
  99.  
  100. DF1:       Device = trackdisk.device
  101.            Unit   = 2
  102.            Flags  = 1
  103.            Surfaces  = 2
  104.            BlocksPerTrack = 11
  105.            Reserved = 2
  106.        PreAlloc = 11
  107.            Interleave = 0
  108.            LowCyl = 0  ;  HighCyl = 79
  109.            Buffers = 20
  110.            BufMemType = 3
  111. #
  112.